New Boolean[] (gb)

Dim hBooleanArray As Boolean[]
hBooleanArray = New Boolean[] ( [ Size As Integer, ... ] )

Create an array of Boolean values.

  • Size specifies the initial size of the array. By default, the array is initially void.

The array can have up to eight dimensions. Each new dimension's size must be specified as an extra argument.

Examples

'Declares a table of boolean values
DIM aMines AS NEW Boolean[8, 8]